UNPKG

audio2wave

Version:

draw wave in canvas from audio element source

15 lines (12 loc) 246 B
export type IPartial<T> = { [P in keyof T]?: T[P] } export type IReadOnly<T> = { readonly [P in keyof T]: T[P] } export type IRequired<T> = { [P in keyof T]-?: T[P] } export type IPick<T, K extends keyof T> = { [P in K]: T[P] }