UNPKG

505 BTypeScriptView Raw
1export interface AddPluginConfig {
2 /**
3 * @default prepend
4 * @description Allow you to choose where to add the content.
5 */
6 placement?: 'prepend' | 'content' | 'append';
7 /**
8 * @description The actual content you wish to add, either a string or array of strings.
9 * You can also specify a path to a local file and the content if it will be loaded by codegen.
10 */
11 content: string | string[];
12}
13export declare const VALID_PLACEMENTS: AddPluginConfig['placement'][];