mirror of
https://github.com/strapi/strapi.git
synced 2026-06-02 16:27:47 +00:00
9 lines
389 B
TypeScript
9 lines
389 B
TypeScript
export * from './content-api-token';
|
|
export type { AdminApiToken, AdminTokenBody } from './admin-token';
|
|
|
|
import type { ContentApiApiToken, ContentApiApiTokenBody } from './content-api-token';
|
|
import type { AdminApiToken, AdminTokenBody } from './admin-token';
|
|
|
|
export type ApiToken = ContentApiApiToken | AdminApiToken;
|
|
export type ApiTokenBody = ContentApiApiTokenBody | AdminTokenBody;
|