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

30 lines
857 B
Plaintext
Raw Normal View History

2017-05-24 02:31:01 +03:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`comment.js 1`] = `
====================================options=====================================
parsers: ["typescript"]
printWidth: 80
| printWidth
=====================================input======================================
2017-05-24 02:31:01 +03:00
export class ViewTokensChangedEvent {
public readonly ranges: {
/**
* Start line number of range
*/
readonly fromLineNumber: number;
}[];
}
=====================================output=====================================
2017-05-24 02:31:01 +03:00
export class ViewTokensChangedEvent {
public readonly ranges: {
2017-05-24 02:31:01 +03:00
/**
* Start line number of range
*/
readonly fromLineNumber: number;
2017-05-24 02:31:01 +03:00
}[];
}
================================================================================
2017-05-24 02:31:01 +03:00
`;