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

22 lines
723 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`index-signature.ts 1`] = `
====================================options=====================================
parsers: ["typescript"]
printWidth: 80
| printWidth
=====================================input======================================
class LocalStorage implements Storage {
[index: number]: string;
[key: string]: any;
}
=====================================output=====================================
class LocalStorage implements Storage {
[index: number]: string;
[key: string]: any;
}
================================================================================
`;