## 概要 [Task3547: 画面実装(ファイル削除設定ポップアップ画面)](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3547) - ファイル削除設定ポップアップの新規実装をしました。 ## レビューポイント - reduxとの連携部分の設計でNGな部分ないか? - 処理の抜け漏れないか? ## UIの変更 - https://ndstokyo.sharepoint.com/:f:/r/sites/Piranha/Shared%20Documents/General/OMDS/%E3%82%B9%E3%82%AF%E3%83%AA%E3%83%BC%E3%83%B3%E3%82%B7%E3%83%A7%E3%83%83%E3%83%88/Task3547?csf=1&web=1&e=0pu92Q ## 動作確認状況 - ローカルで一通りの動作確認しました。 ## 補足 - とくになし
25 lines
429 B
TypeScript
25 lines
429 B
TypeScript
import {
|
|
UpdateAccountInfoRequest,
|
|
GetMyAccountResponse,
|
|
Dealer,
|
|
User,
|
|
} from "../../api/api";
|
|
|
|
export interface AccountState {
|
|
domain: Domain;
|
|
apps: Apps;
|
|
}
|
|
|
|
export interface Domain {
|
|
getAccountInfo: GetMyAccountResponse;
|
|
dealers: Dealer[];
|
|
users: User[];
|
|
}
|
|
|
|
export interface Apps {
|
|
updateAccountInfo: UpdateAccountInfoRequest;
|
|
isLoading: boolean;
|
|
autoFileDelete: boolean;
|
|
fileRetentionDays: number;
|
|
}
|