everyday-types
Everyday utility types
npm i everyday-types
|
pnpm add everyday-types
|
yarn add everyday-types
|
API
# AAt
src/string.ts#L3 # LLength – Ask TS to re-check that A1 extends A2.
And if it fails, A2 will be enforced anyway.
Can also be used to add constraints on parameters.
src/string.ts#L40 L ["length"]
# String
src/string.ts#L1
# Join – Concat many literals together
src/string.ts#L24 # Split – Split S by D into a [[List]]
src/string.ts#L62 # CustomElement
src/everyday-types.ts#L83
# attributeChangedCallback(name, oldValue, newValue) – Callback that is invoked when one of the {@link withProperties} changes.
# connectedCallback() – Invoked when the component is added to the document's DOM.
In connectedCallback() you should setup tasks that should only occur when
the element is connected to the document. The most common of these is
adding event listeners to nodes external to the element, like a keydown
event handler added to the window.
connectedCallback() {
super.connectedCallback();
this.addEventListener('keydown', this._handleKeydown);
}
Typically, anything done in connectedCallback() should be undone when the
element is disconnected, in disconnectedCallback().
connectedCallback() =>
- void
# disconnectedCallback() – Invoked when the component is removed from the document's DOM.
This callback is the main signal to the element that it may no longer be
used. disconnectedCallback() should ensure that nothing is holding a
reference to the element (such as event listeners added to nodes external
to the element), so that it is free to be garbage collected.
disconnectedCallback() {
super.disconnectedCallback();
window.removeEventListener('keydown', this._handleKeydown);
}
An element may be re-connected after being disconnected.
disconnectedCallback() =>
- void
# EventHandler
src/everyday-types.ts#L7 # DetailOf
src/everyday-types.ts#L54 # EventsOf
src/everyday-types.ts#L33 # ValueConstructor
src/everyday-types.ts#L72 StringConstructor | NumberConstructor | BooleanConstructor
Credits
- ts-toolbelt by Pierre-Antoine Mills – TypeScript's largest utility library
Contributing
All contributions are welcome!