UNPKG

@piiano/vault-client

Version:

Piiano Vault generated typescript client

19 lines 486 B
import type { rest_HTTPError } from './rest_HTTPError'; /** * The result of importing a token. */ export type ImportTokenResult = { /** * The token ID. */ token_id: string; /** * Indicates whether the token is imported. * If `true`, the token is imported. * If `false`, the import fails, and the `error` field contains more information. * */ ok: boolean; error?: rest_HTTPError; }; //# sourceMappingURL=ImportTokenResult.d.ts.map