UNPKG

@appium/typedoc-plugin-appium

Version:

TypeDoc plugin for Appium & its extensions

14 lines 631 B
import { Application, ParameterType } from 'typedoc'; import { declarations } from './declarations'; export * from './reader'; export { declarations }; /** * Configures how this plugin handles TypeDoc options. * @param app TypeDoc Application */ export declare function configureOptions(app: Application): Application; type OptionDeclarations = typeof declarations; export type AppiumPluginOptions = { [O in keyof OptionDeclarations]: OptionDeclarations[O]['type'] extends ParameterType.Boolean ? boolean : OptionDeclarations[O]['type'] extends ParameterType.String ? string : unknown; }; //# sourceMappingURL=index.d.ts.map