ISourceCode.d.ts 102 B

123456
  1. export interface ISourceCode {
  2. /**
  3. * @returns string
  4. */
  5. getSourceCode (): string;
  6. }