UNPKG

314 BTypeScriptView Raw
1import { Event } from '../utils/events';
2import { ProjectReflection } from '../models';
3export 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}