Known unknown

This commit is contained in:
Will Scullin 2023-08-13 20:01:17 -07:00
parent 4479614ae3
commit a96730944f
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ type Annunciators = Record<annunciator, boolean>;
export interface Apple2IOState {
annunciators: Annunciators;
cards: Array<Card | null>;
cards: Array<unknown>;
}
export type SampleListener = (sample: number[]) => void;