ISourceCode.d.ts 171 B

1234567891011
  1. export interface ISourceCode {
  2. /**
  3. * @returns string
  4. */
  5. getSourceCode (): string;
  6. /**
  7. * @returns string
  8. */
  9. getSourceMap (): string;
  10. }