mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
import { harmonBinary, Select } from 'harmon';
|
|
|
|
const select1: Select = { func: () => {}, query: 'query1' };
|
|
const select2: Select = { func: () => {}, query: 'query2' };
|
|
const selects = [select1, select2];
|
|
|
|
harmonBinary(selects, selects, true);
|