DefinitelyTyped/types/harmon/harmon-tests.ts
2020-01-13 16:18:15 -05:00

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);