UNPKG

251 BTypeScriptView Raw
1export interface Intent {
2 type: string;
3 params?: {
4 type?: string;
5 id?: string;
6 };
7}
8export interface IntentChecker {
9 (intentName: string, params?: {
10 [key: string]: any;
11 }): boolean;
12 identity?: Symbol;
13}