1 | import type { OptionalArgument } from '../helpers';
|
2 | import type { CursorPaginationEnabled, TokenOverridable } from './common';
|
3 | export 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 | }>;
|
10 | export 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 | }>;
|
18 | export type AuthTestArguments = OptionalArgument<TokenOverridable>;
|
19 | //# sourceMappingURL=auth.d.ts.map |
\ | No newline at end of file |