17 lines
312 B
TypeScript
17 lines
312 B
TypeScript
export type BrowserActionOk = { ok: true };
|
|
|
|
export type BrowserActionTabResult = {
|
|
ok: true;
|
|
targetId: string;
|
|
url?: string;
|
|
};
|
|
|
|
export type BrowserActionPathResult = {
|
|
ok: true;
|
|
path: string;
|
|
targetId: string;
|
|
url?: string;
|
|
};
|
|
|
|
export type BrowserActionTargetOk = { ok: true; targetId: string };
|