-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Missing AST Type #1694
Copy link
Copy link
Closed
Labels
lang:typescriptIssues affecting TypeScript-specific constructs (not general JS issues)Issues affecting TypeScript-specific constructs (not general JS issues)locked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.
Description
export interface ApplicationEventData {
registerBroadcastReceiver(onReceiveCallback: (
context: any /* android.content.Context */,
intent: any /* android.content.Intent */
) => void): void;
}outputs
export interface ApplicationEventData {
registerBroadcastReceiver(
onReceiveCallback: (
context: any,
intent: any
) => void /* android.content.Intent */ /* android.content.Context */
): void;
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
lang:typescriptIssues affecting TypeScript-specific constructs (not general JS issues)Issues affecting TypeScript-specific constructs (not general JS issues)locked-due-to-inactivityPlease open a new issue and fill out the template instead of commenting.Please open a new issue and fill out the template instead of commenting.