mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-18 04:06:19 +00:00
18 lines
335 B
TypeScript
18 lines
335 B
TypeScript
import {SCDish, SCThingOriginType, SCThingType} from '../../src/index.js';
|
|
|
|
export const dishWithTranslation: SCDish = {
|
|
categories: ['appetizer'],
|
|
name: 'foo',
|
|
origin: {
|
|
created: '',
|
|
type: SCThingOriginType.User,
|
|
},
|
|
translations: {
|
|
de: {
|
|
name: 'Foo',
|
|
},
|
|
},
|
|
type: SCThingType.Dish,
|
|
uid: 'bar',
|
|
};
|