@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
20 lines (19 loc) • 419 B
text/typescript
import { ClerkResource } from "./resource.mjs";
//#region src/types/image.d.ts
/** Represents information about an image. */
interface ImageResource extends ClerkResource {
/**
* The unique identifier of the image.
*/
id?: string;
/**
* The name of the image.
*/
name: string | null;
/**
* The public URL of the image.
*/
publicUrl: string | null;
}
//#endregion
export { ImageResource };