Skip to content

Commit

Permalink
Dither, invert, font size, speed
Browse files Browse the repository at this point in the history
  • Loading branch information
LachlanArthur committed Nov 25, 2022
1 parent e074b4a commit ba8d77d
Show file tree
Hide file tree
Showing 11 changed files with 369 additions and 150 deletions.
26 changes: 13 additions & 13 deletions dist/helpers.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
declare function $<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
declare function $<E extends HTMLElement = HTMLElement>(selectors: string): E | null;
declare function $$<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
declare function $$<E extends HTMLElement = HTMLElement>(selectors: string): NodeListOf<E>;
declare function on<E extends HTMLElement, K extends keyof HTMLElementEventMap>(elements: E | null, type: K, listener: (this: E, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement>(elements: E | null, type: string, listener: (this: E, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement, K extends keyof HTMLElementEventMap>(elements: NodeListOf<E>, type: K, listener: (this: E, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement>(elements: NodeListOf<E>, type: string, listener: (this: E, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement, K extends keyof HTMLElementEventMap>(elements: Array<E | null>, type: K, listener: (this: E, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement>(elements: Array<E | null>, type: string, listener: (this: E, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<K extends keyof HTMLElementEventMap>(elements: Document, type: K, listener: (this: Document, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on(elements: Document, type: string, listener: (this: Document, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
export { $, $$, on };
declare function $<K extends keyof HTMLElementTagNameMap>(selectors: K): HTMLElementTagNameMap[K] | null;
declare function $<E extends HTMLElement = HTMLElement>(selectors: string): E | null;
declare function $$<K extends keyof HTMLElementTagNameMap>(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>;
declare function $$<E extends HTMLElement = HTMLElement>(selectors: string): NodeListOf<E>;
declare function on<E extends HTMLElement, K extends keyof HTMLElementEventMap>(elements: E | null, type: K, listener: (this: E, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement>(elements: E | null, type: string, listener: (this: E, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement, K extends keyof HTMLElementEventMap>(elements: NodeListOf<E>, type: K, listener: (this: E, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement>(elements: NodeListOf<E>, type: string, listener: (this: E, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement, K extends keyof HTMLElementEventMap>(elements: Array<E | null>, type: K, listener: (this: E, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<E extends HTMLElement>(elements: Array<E | null>, type: string, listener: (this: E, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
declare function on<K extends keyof HTMLElementEventMap>(elements: Document, type: K, listener: (this: Document, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
declare function on(elements: Document, type: string, listener: (this: Document, ev: Event) => any, options?: boolean | AddEventListenerOptions): void;
export { $, $$, on, };
30 changes: 15 additions & 15 deletions dist/helpers.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/helpers.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export {};
export {};
218 changes: 147 additions & 71 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ba8d77d

Please sign in to comment.