prettier/tests/flow/lib_interfaces/declarations/__snapshots__/jsfmt.spec.js.snap

21 lines
396 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`underscore.js 1`] = `
interface C<T> {
foo(): CArrays<T>;
bar(): C<any>;
}
interface CArrays<T> extends C<Array<T>> {
bar(): C<any>;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
interface C<T> {
foo(): CArrays<T>,
bar(): C<any>
}
interface CArrays<T> extends C<Array<T>> {
bar(): C<any>
}
`;