mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-22 18:44:02 +02:00
8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
export const name = 'testIntersection';
|
|
|
|
export const schema = {
|
|
'a': { uniqueIncrement: true },
|
|
'b': { uniqueIncrement: true },
|
|
'aAndB': { intersection: ['a', 'b'] },
|
|
} as const;
|