Sha256: 6d7c619109099817415786018a74e9d8374ad2e78eebf85ee47b37f59cf8dbed
Contents?: true
Size: 677 Bytes
Versions: 3
Compression:
Stored size: 677 Bytes
Contents
export interface Locale { name: string, dir: "ltr" | "rtl" } export interface AttachmentResource { id: number | null, name: Record<string, string>, description: Record<string, string>, url: string } export interface ImageResource { id: number | null, alternative: Record<string, string>, caption: Record<string, string>, content_type: string, filename: string, crop_start_x: number | null, crop_start_y: number | null, crop_width: number | null, crop_height: number | null, crop_gravity_x: number, crop_gravity_y: number, real_width: number, real_height: number, original_url: string, thumbnail_url: string uncropped_url: string }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pages_core-3.12.4 | app/javascript/types.ts |
pages_core-3.12.3 | app/javascript/types.ts |
pages_core-3.12.2 | app/javascript/types.ts |