Could someone provide an instance of an object that matches the TypeScript type below? I'm a bit confused because I've only worked with interfaces before and have only seen square brackets.
type Hash = {
(data: Uint8Array): Uint8Array
blockLen: number
outputLen: number
create: any
}
Appreciate it!