adnbn
Version:
Addon Bone - Cross-browser web extension framework with shared code base
14 lines (11 loc) • 611 B
TypeScript
import { C as CommandDefinition, f as CommandExecute } from '../../../manifest-DAV18Z2K.js';
import 'react';
import 'utility-types';
import '../../../types/app.js';
import '../../../types/browser.js';
import '../../../types/helpers.js';
import '../../../types/locale.js';
declare const isValidCommandDefinition: (definition: any) => definition is CommandDefinition;
declare const isValidCommandExecuteFunction: (execute: any) => execute is CommandExecute;
declare const isValidCommandName: (name: any) => name is string;
export { isValidCommandDefinition, isValidCommandExecuteFunction, isValidCommandName };