1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 18:44:02 +02:00
Files
misskey/packages/misskey-js/src/schemas/charts/test-intersection.ts
tamaina 9530cb01b9 wip
2023-06-05 05:46:35 +00:00

8 lines
183 B
TypeScript

export const name = 'testIntersection';
export const schema = {
'a': { uniqueIncrement: true },
'b': { uniqueIncrement: true },
'aAndB': { intersection: ['a', 'b'] },
} as const;