Skip to content

Commit

Permalink
fix(types): ajout d'une description sur le type de base (#1493)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgfr authored Oct 16, 2024
1 parent 1c80bd7 commit c29b377
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion shared/types/src/hasura/highlights.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { SOURCES } from "@socialgouv/cdtn-utils";
import { HasuraDocument } from "./common";

export type Highlight = HasuraDocument<any, typeof SOURCES.HIGHLIGHTS>;
export type Highlight = HasuraDocument<any, typeof SOURCES.HIGHLIGHTS> & {
description: string;
};

0 comments on commit c29b377

Please sign in to comment.