mirror of
https://github.com/tale/headplane.git
synced 2026-08-21 02:06:37 +00:00
chore: format everything with oxfmt
This commit is contained in:
+5
-5
@@ -1,7 +1,7 @@
|
||||
export type Key = {
|
||||
id: string;
|
||||
prefix: string;
|
||||
expiration: string;
|
||||
createdAt: Date;
|
||||
lastSeen: Date;
|
||||
id: string;
|
||||
prefix: string;
|
||||
expiration: string;
|
||||
createdAt: Date;
|
||||
lastSeen: Date;
|
||||
};
|
||||
|
||||
+10
-10
@@ -1,13 +1,13 @@
|
||||
import type { User } from './User';
|
||||
import type { User } from "./User";
|
||||
|
||||
export interface PreAuthKey {
|
||||
id: string;
|
||||
key: string;
|
||||
user: User | null;
|
||||
reusable: boolean;
|
||||
ephemeral: boolean;
|
||||
used: boolean;
|
||||
expiration: string;
|
||||
createdAt: string;
|
||||
aclTags: string[];
|
||||
id: string;
|
||||
key: string;
|
||||
user: User | null;
|
||||
reusable: boolean;
|
||||
ephemeral: boolean;
|
||||
used: boolean;
|
||||
expiration: string;
|
||||
createdAt: string;
|
||||
aclTags: string[];
|
||||
}
|
||||
|
||||
+10
-10
@@ -1,13 +1,13 @@
|
||||
import type { Machine } from './Machine';
|
||||
import type { Machine } from "./Machine";
|
||||
|
||||
export interface Route {
|
||||
id: string;
|
||||
node: Machine;
|
||||
prefix: string;
|
||||
advertised: boolean;
|
||||
enabled: boolean;
|
||||
isPrimary: boolean;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
deletedAt: string;
|
||||
id: string;
|
||||
node: Machine;
|
||||
prefix: string;
|
||||
advertised: boolean;
|
||||
enabled: boolean;
|
||||
isPrimary: boolean;
|
||||
createdAt: string;
|
||||
updatedAt: string;
|
||||
deletedAt: string;
|
||||
}
|
||||
|
||||
+8
-8
@@ -1,10 +1,10 @@
|
||||
export interface User {
|
||||
id: string;
|
||||
name: string;
|
||||
createdAt: string;
|
||||
displayName?: string;
|
||||
email?: string;
|
||||
providerId?: string;
|
||||
provider?: string;
|
||||
profilePicUrl?: string;
|
||||
id: string;
|
||||
name: string;
|
||||
createdAt: string;
|
||||
displayName?: string;
|
||||
email?: string;
|
||||
providerId?: string;
|
||||
provider?: string;
|
||||
profilePicUrl?: string;
|
||||
}
|
||||
|
||||
+6
-6
@@ -1,6 +1,6 @@
|
||||
export * from './Key';
|
||||
export * from './Machine';
|
||||
export * from './Route';
|
||||
export * from './User';
|
||||
export * from './PreAuthKey';
|
||||
export * from './HostInfo';
|
||||
export * from "./Key";
|
||||
export * from "./Machine";
|
||||
export * from "./Route";
|
||||
export * from "./User";
|
||||
export * from "./PreAuthKey";
|
||||
export * from "./HostInfo";
|
||||
|
||||
Reference in New Issue
Block a user