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

12 lines
388 B
TypeScript

// Type definitions for harmon 1.4
// Project: https://github.com/No9/harmon
// Definitions by: Eric Danowski <https://github.com/micronaut>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export function harmonBinary(reqSelectors?: Select[], resSelectors?: Select[], htmlOnly?: boolean): any;
export interface Select {
query: string;
func(node: any): any;
}