Skip to content
This repository has been archived by the owner on Oct 25, 2022. It is now read-only.

Commit

Permalink
interfaceの定義位置を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroxto committed Jul 10, 2021
1 parent 954fde9 commit e93932e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions types/application.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
import { Sheet } from './gas';

export interface ApplicationOptions {
sheetName: string;
executeStatusValue: string;
addedStatusValue: string;
lastRowStatusValue: string;
startLine: number;
event: EventOptions;
task: TaskOptions;
}

export interface EventOptions {
calendarId: string;
defaultTitle: string;
Expand All @@ -23,11 +13,14 @@ export interface TaskOptions {
parentTaskTitle: string;
}

export interface Settings {
sheet: Sheet;
rowNumber: number;
event: EventSettings;
task: TaskSettings;
export interface ApplicationOptions {
sheetName: string;
executeStatusValue: string;
addedStatusValue: string;
lastRowStatusValue: string;
startLine: number;
event: EventOptions;
task: TaskOptions;
}

export interface EventSettings {
Expand All @@ -47,6 +40,13 @@ export interface TaskSettings {
id: string;
}

export interface Settings {
sheet: Sheet;
rowNumber: number;
event: EventSettings;
task: TaskSettings;
}

export interface TaskInsertOptions {
due?: string;
parent?: string;
Expand Down

0 comments on commit e93932e

Please sign in to comment.