123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`break.js 1`] = `
- export interface Environment1 extends GenericEnvironment<
- SomeType,
- AnotherType,
- YetAnotherType,
- > {
- m(): void;
- };
- export class Environment2 extends GenericEnvironment<
- SomeType,
- AnotherType,
- YetAnotherType,
- DifferentType1,
- DifferentType2,
- DifferentType3,
- DifferentType4,
- > {
- m() {};
- };
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- export interface Environment1
- extends GenericEnvironment<SomeType, AnotherType, YetAnotherType> {
- m(): void;
- }
- export class Environment2 extends GenericEnvironment<
- SomeType,
- AnotherType,
- YetAnotherType,
- DifferentType1,
- DifferentType2,
- DifferentType3,
- DifferentType4
- > {
- m() {}
- }
- `;
- exports[`module.js 1`] = `
- declare module X {
- declare interface Y { x: number; }
- }
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- declare module X {
- declare interface Y { x: number }
- }
- `;
|