Skip to content

Instantly share code, notes, and snippets.

@Moizsohail
Last active March 3, 2022 15:56
Show Gist options
  • Save Moizsohail/85528c3864fce0bc4896896eae41374f to your computer and use it in GitHub Desktop.
Save Moizsohail/85528c3864fce0bc4896896eae41374f to your computer and use it in GitHub Desktop.
Chrome Extension In React With NPM Modules: Part 2
export enum MessageTypes {
execute,
}
export interface ChromeMessageDefault {
type: MessageTypes;
}
export interface ChromeMessageExecute {
type: MessageTypes.execute;
text: string;
}
export type ChromeMessage = ChromeMessageDefault | ChromeMessageExecute;
export type MessageResponse = (response?: any) => void;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment