mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-09 02:12:51 +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);
|