Skip to content

Commit

Permalink
fix: update bankId type
Browse files Browse the repository at this point in the history
  • Loading branch information
GriffinSauce committed Nov 5, 2022
1 parent 0de502b commit d0c7ee1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/BankSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { AuxMessages, MessageStack } from './MessageStack';
// Extend Record to help infer the runCommand type
export interface BankSettings extends Record<string, unknown> {
bankName: string;
bankId: string; // 32-bit
bankId: number; // 32-bit
bankMessages: MessageStack;
expMessages: MessageStack<RawExpMessage>[];
switchGroups: Array<SwitchGroup[]>;
Expand Down

0 comments on commit d0c7ee1

Please sign in to comment.