tickList is (or should be) an Array of type number
fpsObject = {
maxSamples: 100,
tickIndex: 0,
tickSum: 0,
tickList: []
}
Can I enforce this type without creating an interface? Or must I create an interface to do this? I would rather avoid creating an interface if at all possible. I've got too many interface files already!