UNPKG

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