1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-30 13:23:58 +02:00
This commit is contained in:
tamaina
2023-06-05 05:46:35 +00:00
parent fd223a8538
commit 9530cb01b9
36 changed files with 310 additions and 254 deletions

View File

@@ -0,0 +1,7 @@
export const name = 'testIntersection';
export const schema = {
'a': { uniqueIncrement: true },
'b': { uniqueIncrement: true },
'aAndB': { intersection: ['a', 'b'] },
} as const;