15 lines
151 B
TypeScript
15 lines
151 B
TypeScript
|
|
||
|
import { TextFile } from "./ast"
|
||
|
|
||
|
export class Package {
|
||
|
|
||
|
constructor(
|
||
|
public name: string | null,
|
||
|
public files: TextFile[],
|
||
|
) {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|