prettier/tests/flow/esproposal_class_static_fie.../__snapshots__/jsfmt.spec.js.snap

21 lines
422 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
/* @flow */
class Foo {
static annotationOnly: string;
static initOnly = 'asdf';
static initWithAnnotation: string = 'asdf';
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/* @flow */
class Foo {
static annotationOnly: string;
static initOnly = "asdf";
static initWithAnnotation: string = "asdf";
}
`;