@schorts/shared-kernel
Version:
A modular, type-safe foundation for building expressive, maintainable applications. This package provides core abstractions for domain modeling, HTTP integration, authentication, state management, and more — designed to be framework-agnostic and highly ex
14 lines • 356 B
TypeScript
export type JSONAPIList<EntityAttributes> = {
data: Array<{
id: string;
type: string;
attributes: Omit<EntityAttributes, "id">;
}>;
included?: Array<{
id: string;
type: string;
attributes: Record<string, any>;
}>;
meta?: Record<string, any>;
};
//# sourceMappingURL=json-api-list.d.ts.map