Answers for "typescript how to define type for an array of objects odcs"

1

typescript array of object with types

type submitionDataType = {
    title: string,
    desc: string,
    decks: Array<{ front: string, back: string }>
}
Posted by: Guest on August-08-2021

Code answers related to "typescript how to define type for an array of objects odcs"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language