UNPKG

@appium/typedoc-plugin-appium

Version:

TypeDoc plugin for Appium & its extensions

266 lines 10.5 kB
import { ValueOf } from 'type-fest'; import { Comment, DeclarationReflection, LiteralType, ParameterReflection, ReferenceType, ReflectionFlags, ReflectionKind, ReflectionType, SignatureReflection, SomeType, TupleType, TypeOperatorType } from 'typedoc'; import { AllowedHttpMethod, AppiumPluginReflectionKind, CommandReflection, ParentReflection } from '../model'; import { NAME_EXTERNAL_DRIVER, NAME_TYPES_MODULE } from './builtin-external-driver'; import { NAME_BUILTIN_COMMAND_MODULE, NAME_METHOD_MAP } from './builtin-method-map'; import { NAME_NEW_METHOD_MAP, NAME_EXECUTE_METHOD_MAP, NAME_PARAMS } from './external'; type WithName<S extends string, R> = R & { name: S; }; type WithKind<K extends ReflectionKind | AppiumPluginReflectionKind, R> = R & { kind: K; }; /** * Utility to narrow a declaration reflection to a specific `SomeType` */ type WithSomeType<T extends SomeType, R> = R & { type: T; }; /** * Utility to narrow by name and kind */ type WithNameAndKind<S extends string, K extends ReflectionKind, R> = R & { name: S; kind: K; }; /** * Utility; a TupleType with literal elements */ export type TupleTypeWithLiteralElements = TupleType & { elements: LiteralType[]; }; /** * Type corresponding to a reflection of a {@linkcode @appium/types#MethodMap} */ export type MethodMapDeclarationReflection = WithName<typeof NAME_METHOD_MAP | typeof NAME_NEW_METHOD_MAP, DeclarationReflectionWithReflectedType>; /** * Type corresponding to a reflection of {@linkcode @appium/base-driver} */ export type BaseDriverDeclarationReflection = WithNameAndKind<typeof NAME_BUILTIN_COMMAND_MODULE, ReflectionKind.Module, DeclarationReflection>; /** * Type for the parameters of a command definition or execute method definition. * * Node that merging `TypeOperatorType` won't work because it will no longer satisfy `SomeType`, because `SomeType` is a finite collection. */ export type MethodDefParamNamesDeclarationReflection = WithSomeType<TypeOperatorTypeWithTupleTypeWithLiteralElements, DeclarationReflection>; export type TypeOperatorTypeWithTupleTypeWithLiteralElements = TypeOperatorType & { operator: 'readonly'; target: TupleTypeWithLiteralElements; }; /** * Narrows a declaration reflection to one having a reflection type and a property kind. Generic */ export type PropDeclarationReflection = WithKind<ReflectionKind.Property, DeclarationReflectionWithReflectedType>; /** * A type corresponding to the HTTP method of a route, which is a property off of the object with the route name in a `MethodMap` */ export type HTTPMethodDeclarationReflection = WithName<AllowedHttpMethod, PropDeclarationReflection>; /** * A declaration reflection having a reflection type. Generic */ export type DeclarationReflectionWithReflectedType = WithSomeType<ReflectionType, DeclarationReflection>; /** * Type corresponding to the value of the `command` property within a `MethodDef`, which must be a type literal. */ export type CommandPropDeclarationReflection = WithSomeType<LiteralType, DeclarationReflection>; /** * A generic type guard */ export type Guard<T> = (value: any) => value is T; /** * Type corresponding to an execute method map */ export type ExecMethodDeclarationReflection = WithName<typeof NAME_EXECUTE_METHOD_MAP, DeclarationReflectionWithReflectedType> & WithStaticFlag; /** * Whatever has this flag will be a static member */ export type WithStaticFlag = { flags: ReflectionFlags & { isStatic: true; }; }; /** * Whatever has this flag will _not_ be a static member */ export type WithoutStaticFlag = { flags: ReflectionFlags & { isStatic: false; }; }; /** * Type corresponding to the `params` prop of a `MethodDef` */ export type MethodDefParamsPropDeclarationReflection = WithNameAndKind<typeof NAME_PARAMS, ReflectionKind.Property, DeclarationReflectionWithReflectedType>; /** * Type corresponding to the `payloadParams` prop of an `ExecMethodDef` */ export type ExecMethodDefParamsPropDeclarationReflection = WithName<typeof NAME_PARAMS, DeclarationReflectionWithReflectedType>; /** * Type corresponding to `@appium/types` module */ export type AppiumTypesReflection = WithNameAndKind<typeof NAME_TYPES_MODULE, ReflectionKind.Module, ParentReflection>; /** * Type corresponding to a TS `interface` */ export type InterfaceDeclarationReflection = WithKind<ReflectionKind.Interface, DeclarationReflection>; /** * Type corresponding to the `ExternalDriver` `interface` of `@appium/types` */ export type ExternalDriverDeclarationReflection = WithName<typeof NAME_EXTERNAL_DRIVER, InterfaceDeclarationReflection>; /** * A call signature for a function that returns some sort of `Promise`. */ export type AsyncCallSignatureReflection = CallSignatureReflection & { type: ReferenceType; name: 'Promise'; }; /** * An async method or reference to an async method. In a driver, a command's method must be of this type. */ export type CommandMethodDeclarationReflection<T extends ReferenceType | ReflectionType = ReferenceType> = WithSomeType<T, DeclarationReflection> & WithKind<T extends ReferenceType ? ReflectionKind.Method : ReflectionKind.Property, DeclarationReflection> & WithoutStaticFlag & (T extends ReferenceType ? { signatures: NonEmptyArray<AsyncCallSignatureReflection>; } : T extends ReflectionType ? { type: { declaration: { signatures: NonEmptyArray<AsyncCallSignatureReflection>; }; }; } : never); /** * A lookup of command names to their reflections. */ export type KnownMethods = Map<string, CommandMethodDeclarationReflection>; /** * A {@linkcode DeclarationReflection} which is a `class`. */ export type ClassDeclarationReflection = WithKind<ReflectionKind.Class, DeclarationReflection>; /** * A constructor */ export type ConstructorDeclarationReflection = WithNameAndKind<'constructor', ReflectionKind.Constructor, DeclarationReflection>; /** * A {@linkcode ReferenceType} referencing the constructor of `BasePlugin` */ export type BasePluginConstructorReferenceType = ReferenceType & { name: 'BasePlugin.constructor'; }; /** * A {@linkcode DeclarationReflection} for the constructor of a class extending `BasePlugin` */ export type BasePluginConstructorDeclarationReflection = WithSomeType<ReferenceType, DeclarationReflection> & ConstructorDeclarationReflection & ({ inheritedFrom: BasePluginConstructorReferenceType; } | { overwrites: BasePluginConstructorReferenceType; }); /** * One of {@linkcode ExecMethodDefParamsPropDeclarationReflection} or * {@linkcode MethodDefParamsPropDeclarationReflection}, which are "parameters" properties of method * definition objects (as in a `MethodMap`) or execute method definitions (in an `ExecMethodMap`) */ export type ParamsPropDeclarationReflection = ExecMethodDefParamsPropDeclarationReflection | MethodDefParamsPropDeclarationReflection; /** * A {@linkcode SignatureReflection} which is a call signature; a function signature. * * (Other types of signatures include things like "constructor signatures") */ export type CallSignatureReflection = WithKind<ReflectionKind.CallSignature, SignatureReflection>; /** * An array with a nonzero number of items. */ export type NonEmptyArray<T> = [T, ...T[]]; /** * A {@linkcode CallSignatureReflection} with a nonzero number of parameters. * * This is used to rename parameters on commands to prefer the ones as defined in the method map. */ export type CallSignatureReflectionWithArity = CallSignatureReflection & { parameters: NonEmptyArray<ParameterReflection>; }; /** * Can be used to narrow a {@linkcode CommandReflection} to one representing an execute method. */ export type ExecuteMethodCommandReflection = CommandReflection & { kind: typeof AppiumPluginReflectionKind.ExecuteMethod; script: string; }; /** * Languages which can be used in example code blocks * * The key is the identifier used in a fenced code block, and the value is the "display" value */ export declare const ExampleLanguage: Readonly<{ ts: "TypeScript"; typescript: "TypeScript"; js: "JavaScript"; javascript: "JavaScript"; py: "Python"; python: "Python"; rb: "Ruby"; ruby: "Ruby"; java: "Java"; }>; /** * This is basically a fenced code block split into two portions: the text itself and the language * specified in the opening fence. Part of {@linkcode ExtractedExamples} */ export interface Example { text: string; lang: ValueOf<typeof ExampleLanguage>; } /** * A pair of a comment and any examples which were removed from it. Returned by {@linkcode extractExamples} */ export interface ExtractedExamples { examples?: Example[]; comment: Comment; } /** * Mainly for debugging purposes, these tell us (roughly) where a comment came from. * In the case of {@linkcode CommentSource.Multiple}, the comment was derived * from multiple sources. */ export declare enum CommentSource { /** * This is a comment directly on the `DeclarationReference` itself. * * It's unclear to me why sometimes comments are attached to the method proper or its signature; * might have something to do with `ReferenceType`. */ Method = "method", /** * A comment attached to the method's call signature. */ MethodSignature = "method-signature", /** * A comment from "elsewhere", which is usually a method map or exec method map. */ OtherComment = "other-comment", /** * A comment coming out of the `@appium/types` package; specifically a method in `ExternalDriver` */ OtherMethod = "builtin-interface", /** * A comment _built_ from any of the above sources from one or more `DeclarationReference` * objects. For example, the summary (description) of an implementation of `doubleClick()` and * the `@example` block tag from the `ExternalDriver` interface. */ Multiple = "multiple", /** * A comment found in a `ParameterReflection` */ Parameter = "parameter", /** * A comment found in a `ParameterReflection` within a builtin method (e.g., from `ExternalDriver`) */ BuiltinParameter = "builtin-parameter", /** * A comment found in a `SignatureReflection` within a builtin method */ BuiltinSignature = "builtin-signature", /** * A comment found in a `SignatureReflection`, but not via a method. */ Signature = "signature" } export {}; //# sourceMappingURL=types.d.ts.map