@tonyfreed/card-core
Version:
Core components and types for Ildex card system
36 lines • 760 B
TypeScript
/**
* Profile Section Types
* Re-export Profile type from main types file for profile section
*/
export declare enum ProfileTemplate {
STANDARD = "standard",
MODERN = "modern",
CLASSIC = "classic",
MODERN_CLASSIC = "modern-classic"
}
export interface IProfile {
name: {
en?: string;
ru?: string;
he?: string;
};
title?: {
en?: string;
ru?: string;
he?: string;
};
description?: {
en?: string;
ru?: string;
he?: string;
};
slogan?: {
en?: string;
ru?: string;
he?: string;
};
profileImageURL?: string;
bannerImageURL?: string;
design?: ProfileTemplate;
}
//# sourceMappingURL=profile.interface.d.ts.map