(value: unknown)
| 99 | * before storing — nothing else writes the column. |
| 100 | */ |
| 101 | export const previewFromColumn = (value: unknown): ArtifactPreview | null => |
| 102 | typeof value === "string" && value !== "" ? { kind: "layout", markup: value } : null; |
| 103 | |
| 104 | export interface Artifact { |
| 105 | readonly id: ArtifactId; |
no outgoing calls
no test coverage detected