boats
Version:
Beautiful Open / Async Template System - Write less yaml with BOATS and Nunjucks.
19 lines (18 loc) • 490 B
TypeScript
export type AutoComponentIndexerOptions = {
dropBaseName: boolean;
dontUcFirst?: boolean;
} | string;
export interface AutoChannelIndexerOptions {
channelSeparators: {
match: string;
separator: string;
}[];
}
export interface GetIndexYamlOptions {
autoComponentIndexerOptions?: AutoComponentIndexerOptions;
autoChannelIndexerOptions?: AutoChannelIndexerOptions;
channels?: any;
components?: any;
dontUcFirst?: boolean;
paths?: any;
}