UNPKG

@sphereon/ssi-sdk.data-store

Version:

18 lines 672 B
import { BaseEntity } from 'typeorm'; import { ImageAttributesEntity } from './ImageAttributesEntity'; import { BackgroundAttributesEntity } from './BackgroundAttributesEntity'; import { TextAttributesEntity } from './TextAttributesEntity'; export declare class BaseLocaleBrandingEntity extends BaseEntity { id: string; alias?: string; locale?: string; logo?: ImageAttributesEntity; description?: string; background?: BackgroundAttributesEntity; text?: TextAttributesEntity; createdAt: Date; lastUpdatedAt: Date; updateUpdatedDate(): void; validate(): Promise<undefined>; } //# sourceMappingURL=BaseLocaleBrandingEntity.d.ts.map