@stacks/profile
Version:
Library for Stacks profiles
17 lines (16 loc) • 445 B
TypeScript
import { ProfileType } from '../types';
export declare function getPersonFromLegacyFormat(profile: any): {
"@type": ProfileType;
account?: any[] | undefined;
name?: string | undefined;
description?: string | undefined;
address?: {
"@type": string;
addressLocality: string;
} | undefined;
image?: any[] | undefined;
website?: {
"@type": string;
url: string;
}[] | undefined;
};