Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
12 lines
349 B
Plaintext
12 lines
349 B
Plaintext
import { MergeCoreCollection } from "../types/schema.js";
|
|
|
|
//#region src/schema/translation.d.ts
|
|
type DirectusTranslation<Schema = any> = MergeCoreCollection<Schema, 'directus_translations', {
|
|
id: string;
|
|
language: string;
|
|
key: string;
|
|
value: string;
|
|
}>;
|
|
//#endregion
|
|
export { DirectusTranslation };
|
|
//# sourceMappingURL=translation.d.ts.map |