UNPKG

449 BTypeScriptView Raw
1export interface TortillaConfig {
2 render?: {
3 transformations: any[];
4 blacklist: any[];
5 };
6}
7declare function registerCustomTransformations(): void;
8declare function getBlacklist(): any[];
9export declare const Config: {
10 registerCustomTransformations: typeof registerCustomTransformations;
11 getBlacklist: typeof getBlacklist;
12 render?: {
13 transformations: any[];
14 blacklist: any[];
15 };
16};
17export {};