mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
import {SCThingOriginType, SCDish} from '../../src/index.js';
|
|
|
|
export const notADish: Omit<SCDish, 'type'> & {type: 'foobar'} = {
|
|
categories: ['appetizer'],
|
|
name: 'foo',
|
|
origin: {
|
|
created: '',
|
|
type: SCThingOriginType.User,
|
|
},
|
|
type: 'foobar',
|
|
uid: 'bar',
|
|
};
|