17 lines
234 B
TypeScript
17 lines
234 B
TypeScript
import { Agd, Soc, Usr } from "../typ.ts"
|
|
|
|
export type Nav = {
|
|
usr?: Usr["_id"],
|
|
soc?: Soc["_id"],
|
|
agd?: Agd["_id"],
|
|
rec?: "cdt" | "dbt" | "ern" | "agd" | "msg" | "act",
|
|
utc?: number,
|
|
}
|
|
|
|
function nav(
|
|
n: Nav,
|
|
h: string,
|
|
) {
|
|
|
|
}
|