Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 2x | import { type } from 'arktype';
import { AnalyzedObservation, MetadataRecord } from './results.js';
import { Session } from './sessions.js';
export const Analysis = type({
observations: type({
'[string]': AnalyzedObservation
}).describe("Associe l'ID d'une observation à son label et les valeurs de ses métadonnées"),
session: Session.omit('metadata')
.and({
metadata: MetadataRecord
})
.describe("La session d'analyse")
});
|