From 925e44eb0d85bd33e5287e5b0d50552924268ceb Mon Sep 17 00:00:00 2001 From: Guyi Date: Wed, 27 May 2020 15:10:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0jira=E4=BB=BB=E5=8A=A1=EF=BC=8C?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/base/single/iframe/iframe.ts | 8 ++++---- typescript/core/wrapper/layout/layout.absolute.ts | 6 +++--- typescript/core/wrapper/layout/layout.vertical.ts | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/typescript/base/single/iframe/iframe.ts b/typescript/base/single/iframe/iframe.ts index 86d80ca9d..2873ac4af 100644 --- a/typescript/base/single/iframe/iframe.ts +++ b/typescript/base/single/iframe/iframe.ts @@ -1,11 +1,11 @@ import { _Single } from "../single"; export interface _Iframe extends _Single { - setSrc: (v: string) => void; + setSrc(v: string): void; - getSrc: () => string; + getSrc(): string; - setName: (v: string) => void; + setNam(v: string): void; - getName: () => string; + getName(): string; } diff --git a/typescript/core/wrapper/layout/layout.absolute.ts b/typescript/core/wrapper/layout/layout.absolute.ts index 04f625750..d848647cb 100644 --- a/typescript/core/wrapper/layout/layout.absolute.ts +++ b/typescript/core/wrapper/layout/layout.absolute.ts @@ -1,9 +1,9 @@ import { _Layout } from "../layout"; export interface _AbsoluteLayout extends _Layout { - resize: () => void; + resize(): void; - stroke: (items: T[]) => void; + stroke(items: T[]): void; - populate: (items?: T[]) => void; + populate(items?: T[]): void; } diff --git a/typescript/core/wrapper/layout/layout.vertical.ts b/typescript/core/wrapper/layout/layout.vertical.ts index e5df71933..6fe104181 100644 --- a/typescript/core/wrapper/layout/layout.vertical.ts +++ b/typescript/core/wrapper/layout/layout.vertical.ts @@ -1,7 +1,7 @@ import { _Layout } from "../layout"; export interface _VerticalLayout extends _Layout { - resize: () => void; + resize(): void; - populate: (items?: T[]) => void; + populate(items?: T[]): void; }