1 | import { Event } from '../utils/events';
|
2 | import { ProjectReflection } from '../models';
|
3 | export declare class SerializeEvent extends Event {
|
4 | readonly project: ProjectReflection;
|
5 | outputDirectory?: string;
|
6 | outputFile?: string;
|
7 | output: any;
|
8 | constructor(name: string, project: ProjectReflection);
|
9 | }
|