We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
export function doA() { } export function doB() { }
export function doA() { } export const doB = () => { };
export function doA() { } export class ClassA { doB() { doA(); } };
export function doA() { } function doB() { }
export function doA() { } const doB = () => { };
export class ClassA { doB() { doA(); } }; function doA() { }
But allow multiple interfaces or consts:
export interface MyStructure { param1:OtherStructure; } export interface OtherStructure { param2:MyOtherStructure; param3:string; }
export const MOUSE_EVENT_TYPES:string[] = ['click','mouseup','mousedown']; export const TOUCH_EVENT_TYPES:string[] = ['touchstart', 'touchend', 'touchcancel']; export const EVENT_NAMES:string[] = [...MOUSE_EVENT_TYPES, ...TOUCH_EVENT_TYPES];
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Invalid code examples 👎
Valid code examples 👍
But allow multiple interfaces or consts:
The text was updated successfully, but these errors were encountered: