manifest
Version:
The backend for AI code editors
26 lines (25 loc) • 1.14 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.propTypeExamples = void 0;
const src_1 = require("../../../../types/src");
exports.propTypeExamples = {
[]: 'This is a simple string example.',
[]: 'This is a longer text example that might span multiple lines and contain more detailed information.',
[]: '<p>This is <strong>rich text</strong> with <em>HTML formatting</em> and <a href="https://example.com">links</a>.</p>',
[]: 42,
[]: 'https://example.com',
[]: 99.99,
[]: '2024-01-15',
[]: '2024-01-15T10:30:00Z',
[]: 'user@example.com',
[]: true,
[]: '********',
[]: null,
[]: {
lat: 45.1666,
lng: 5.7167
},
[]: 'https://example.com/uploads/documents/report.pdf',
[]: null,
[]: null
};