mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-04-20 12:28:08 +00:00
16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
import { IResultFile } from '../types';
|
|
|
|
export default class ResultFile implements IResultFile {
|
|
public name: string;
|
|
|
|
public ext: string;
|
|
|
|
public content: string;
|
|
|
|
constructor(name: string, ext = 'jsx', content = '') {
|
|
this.name = name;
|
|
this.ext = ext;
|
|
this.content = content;
|
|
}
|
|
}
|