prettier/tests/typescript_definite/__snapshots__/jsfmt.spec.js.snap

28 lines
726 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`definite.ts 1`] = `
====================================options=====================================
parsers: ["typescript"]
printWidth: 80
| printWidth
=====================================input======================================
class MyComponent {
ngModel!: ng.INgModelController;
}
const x!: string
var y!: MyComponent
=====================================output=====================================
class MyComponent {
ngModel!: ng.INgModelController;
}
const x!: string;
var y!: MyComponent;
================================================================================
`;