immich/web/src/lib/actions/focus.ts
Spencer Fasulo c86fa81e47
docs(web): JSDoc comments for svelte actions (#12963)
* Web: JSDoc comments for Actions

* Remove comment
2024-09-27 01:41:22 +00:00

5 lines
131 B
TypeScript

/** Focus the given element when it is mounted. */
export const initInput = (element: HTMLInputElement) => {
element.focus();
};