export const delay = async (): Promise<void> => { await new Promise((resolve) => setTimeout(resolve, 100)) }