mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* t(kagekiri): new definitions for kagekiri * Update types/kagekiri/index.d.ts Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com> Co-authored-by: Piotr Błażejewicz (Peter Blazejewicz) <peterblazejewicz@users.noreply.github.com>
9 lines
441 B
TypeScript
9 lines
441 B
TypeScript
// Type definitions for kagekiri 1.0
|
|
// Project: https://github.com/salesforce/kagekiri
|
|
// Definitions by: Ted Conn <https://github.com/tedconn>
|
|
// Nolan Lawson <https://github.com/nolanlawson>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function querySelector(selector: string, context?: Node): HTMLElement | null;
|
|
export function querySelectorAll(selector: string, context?: Node): NodeList;
|