@nx/gatsby
Version:
Gatsby Plugin for Nx
11 lines (10 loc) • 352 B
TypeScript
import { Tree } from '@nx/devkit';
import { Schema } from '../schema';
export interface NormalizedSchema extends Schema {
projectName: string;
projectRoot: string;
projectDirectory: string;
parsedTags: string[];
styledModule: null | string;
}
export declare function normalizeOptions(host: Tree, options: Schema): NormalizedSchema;