This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: typescript-code-style/no-useless-empty-export

Language: TypeScript

Severity: Notice

Category: Best Practices

Description

Do not use empty exports.

Non-Compliant Code Examples

export const value = 'Hello, world!';
export {};

import 'some-other-module';
export {};

Compliant Code Examples

declare module '_';
import {} from '_';
import * as _ from '_';
export = {};
export = 3;
export const _ = {};

const _ = {};
export default _;

export * from '_';
export = {};