prettier/tests/typescript_export/export.ts

8 lines
101 B
TypeScript
Raw Normal View History

declare module "hello" {
export default Hello;
}
declare module "hello" {
export = Hello;
}