feat(navigation): conformance manifest + self-asserting bind-production
This commit is contained in:
16
packages/navigation/src/feature.manifest.ts
Normal file
16
packages/navigation/src/feature.manifest.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { defineFeature } from "@repo/core-shared/conformance";
|
||||
|
||||
/**
|
||||
* The navigation feature's conformance manifest.
|
||||
*/
|
||||
export const navigationManifest = defineFeature({
|
||||
name: "navigation",
|
||||
requiredCores: [],
|
||||
useCases: {
|
||||
getHeader: { mutates: false, audits: [], publishes: [], consumes: [] },
|
||||
},
|
||||
realtimeChannels: [],
|
||||
jobs: [],
|
||||
} as const);
|
||||
|
||||
export type NavigationManifest = typeof navigationManifest;
|
||||
Reference in New Issue
Block a user