@forge/lint
5.14.1-next.75.15.0-next.8
out/lint/linters/remote-linter/invoke-remote-interface.d.tsout/lint/linters/remote-linter/invoke-remote-interface.d.ts−35
Index: package/out/lint/linters/remote-linter/invoke-remote-interface.d.ts
===================================================================
--- package/out/lint/linters/remote-linter/invoke-remote-interface.d.ts
+++ package/out/lint/linters/remote-linter/invoke-remote-interface.d.ts
@@ -1,35 +0,0 @@
-import { TSESTree } from '@typescript-eslint/typescript-estree';
-import { LintCriteriaMatch } from '../../linter-interface';
-export declare enum InvokeRemoteTypes {
- DIRECT_CALL = 0,
- MEMBER_CALL = 1,
- IMPORT_LIST = 2
-}
-export declare const INVOKE_REMOTE_PACKAGE_NAME = "@forge/api";
-export declare const INVOKE_REMOTE_FUNCTION_NAME = "invokeRemote";
-export interface InvokeRemoteCallBase extends LintCriteriaMatch {
- remoteKey: string;
-}
-export interface InvokeRemoteDirectCall extends InvokeRemoteCallBase {
- type: InvokeRemoteTypes.DIRECT_CALL;
- calleeName: string;
-}
-export interface InvokeRemoteMemberCall extends InvokeRemoteCallBase {
- type: InvokeRemoteTypes.MEMBER_CALL;
- objectName: string;
-}
-export interface InvokeRemoteImport extends LintCriteriaMatch {
- type: TSESTree.ImportClause['type'];
- alias: string;
-}
-export interface InvokeRemoteImportList extends LintCriteriaMatch {
- type: InvokeRemoteTypes.IMPORT_LIST;
- imports: InvokeRemoteImport[];
-}
-export declare type InvokeRemoteCall = InvokeRemoteDirectCall | InvokeRemoteMemberCall;
-export declare type InvokeRemoteUsage = InvokeRemoteCall | InvokeRemoteImportList;
-export interface InvokeRemoteVerifierInput {
- invokeRemoteCalls: InvokeRemoteCall[];
- imports: InvokeRemoteImport[];
-}
-//# sourceMappingURL=invoke-remote-interface.d.ts.map
\ No newline at end of file