1 | import { Category } from '@hint/utils-types';
|
2 | import { HintScope } from '../enums/hint-scope';
|
3 | export declare type MetadataDocs = {
|
4 | category?: Category;
|
5 | description: string;
|
6 | name?: string;
|
7 | };
|
8 | export declare type HintMetadata = {
|
9 | docs?: MetadataDocs;
|
10 | getDescription: (language: string) => string;
|
11 | getName: (language: string) => string;
|
12 | id: string;
|
13 | ignoredConnectors?: string[];
|
14 | ignoredUrls?: RegExp[];
|
15 | schema: any[];
|
16 | scope: HintScope;
|
17 | };
|
18 |
|
\ | No newline at end of file |