storybook/app/angular/standalone.d.ts
ThibaudAv bda825b59f
feat: start and build storybook by ng Builder with only tsConfig
should allow project with only lib, without `@angular-devkit/build-angular:browser` to complete the configuration, to work more simply
2021-09-03 14:01:36 +02:00

16 lines
423 B
TypeScript

import { CLIOptions, LoadOptions, BuilderOptions } from '@storybook/core-common';
export type StandaloneOptions = Partial<
CLIOptions &
LoadOptions &
BuilderOptions & {
mode?: 'static' | 'dev';
angularBrowserTarget?: string;
tsConfig?: string;
}
>;
declare module '@storybook/angular/standalone' {
export default function buildStandalone(options: StandaloneOptions): Promise<unknown>;
}