import { ICreativeWork as IBaseCreativeWork } from '../../creativeWork'; import { CreativeWorkType } from '../../creativeWorkType'; import { IIdentifier } from '../../thing'; /** * ウェブアプリケーション */ export interface ICreativeWork extends Pick { typeOf: CreativeWorkType.WebApplication; /** * アプリケーションクライアントID */ id: string; identifier?: IIdentifier; }