mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
388 B
TypeScript
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;
|
|
}
|