react-playmakers
Version:
React wrapper providing utilities for PlayMakers integration
18 lines (17 loc) • 401 B
TypeScript
export interface AssetPayloadType {
url: string;
name: string;
type: string;
data: string;
tags: string[];
schemaId: string;
projectId: string;
description: string;
}
export interface AssetType extends AssetPayloadType {
id: string;
createdAt: string;
}
export interface AssetExtendedType extends AssetType {
delete: () => Promise<void>;
}