UNPKG

@appium/typedoc-plugin-appium

Version:

TypeDoc plugin for Appium & its extensions

11 lines 357 B
import { Comment } from 'typedoc'; import { CommentSource } from '../types'; /** * A wrapper around a found {@linkcode Comment} which also contains a {@linkcode CommentSource} * so we can observe where the `Comment` came from. */ export interface CommentData { comment: Comment; commentSource: CommentSource; } //# sourceMappingURL=types.d.ts.map