summaryrefslogtreecommitdiff
path: root/examples/middleware/src/env.d.ts
blob: 74b9019e57466fa8d0fc9136891e76b1c636f80c (plain) (blame)
1
2
3
4
5
6
7
8
9
/// <reference path="../.astro/types.d.ts" />
declare namespace App {
	interface Locals {
		user: {
			name: string;
			surname: string;
		};
	}
}