UNPKG

735 BTypeScriptView Raw
1import type { CursorPaginationEnabled, TokenOverridable } from './common';
2export interface AuthRevokeArguments extends TokenOverridable {
3 /**
4 * @description Setting this parameter to `true` triggers a testing mode where the specified token
5 * will not actually be revoked.
6 */
7 test?: boolean;
8}
9export interface AuthTeamsListArguments extends TokenOverridable, CursorPaginationEnabled {
10 /**
11 * @description Whether to return icon paths for each workspace.
12 * An icon path represents a URI pointing to the image signifying the workspace.
13 * Defaults to `false`.
14 */
15 include_icon?: boolean;
16}
17export interface AuthTestArguments extends TokenOverridable {
18}
19//# sourceMappingURL=auth.d.ts.map
\No newline at end of file