export type StandardError = Error | string | null | undefined; export type StandardErrorCallback = (err: StandardError, response?: R) => void; export type StandardPromise = Promise<{ err?: StandardError; data?: R; }>; export type StandardCallback = (err: E, response?: R) => void; export type Manifest = Record; //# sourceMappingURL=typedoc-types.d.ts.map