mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-18 20:37:14 +08:00
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
export class Source {
|
|
body: string;
|
|
name: string;
|
|
constructor(body: string, name?: string);
|
|
}
|