type ClientData = {
id: number,
name: string
}
And if you know the answer, can you please also tell me what this is? Is it really called a type? I can't find anything about it on the internet, is it an interface?
type ClientData = {
id: number,
name: string
}
And if you know the answer, can you please also tell me what this is? Is it really called a type? I can't find anything about it on the internet, is it an interface?