prettier/tests/typescript_declare/declare_function.ts

8 lines
117 B
TypeScript

declare function x();
declare function y(): void;
declare namespace A {
function x();
function y(): void;
}