mirror of
https://github.com/primedigitaltech/azon_seeker.git
synced 2026-01-19 13:13:22 +08:00
13 lines
302 B
TypeScript
13 lines
302 B
TypeScript
import type { ProtocolWithReturn } from 'webext-bridge';
|
|
|
|
declare module 'webext-bridge' {
|
|
export interface ProtocolMap {
|
|
// define message protocol types
|
|
// see https://github.com/antfu/webext-bridge#type-safe-protocols
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
type AppContext = 'options' | 'sidepanel';
|
|
}
|