bolt/src/package.ts

15 lines
151 B
TypeScript
Raw Normal View History

2020-03-03 14:53:54 +01:00
import { TextFile } from "./ast"
export class Package {
constructor(
public name: string | null,
public files: TextFile[],
) {
}
}