Can anyone please give an example object that fits the following typescript type? Kind of puzzled since I only used interfaces before and only saw squared brackets before.
type Hash = {
(data: Uint8Array): Uint8Array
blockLen: number
outputLen: number
create: any
}
Thanks!!