Skip to content

Commit

Permalink
定義する順番を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroxto committed Jul 31, 2021
1 parent 8bc1dd0 commit 8f90eaf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions types/state.d.ts
@@ -1,10 +1,5 @@
import { Link, QrCodeErrorCorrectionLevel, QrCodeRenderAsOptionValue } from './index';

export interface RootState {
pageLinks: PageLinksState;
qrCodeGenerator: QrCodeGeneratorState;
}

export interface PageLinksState {
topPageLink: Link;
trainNumberPageLink: Link;
Expand All @@ -23,3 +18,8 @@ export interface QrCodeGeneratorState {
backGround: string;
foreGround: string;
}

export interface RootState {
pageLinks: PageLinksState;
qrCodeGenerator: QrCodeGeneratorState;
}

0 comments on commit 8f90eaf

Please sign in to comment.