7 lines
140 B
TypeScript
7 lines
140 B
TypeScript
// License: LGPL-3.0-or-later
|
|
import { HoudiniObject } from './common';
|
|
|
|
export interface User extends HoudiniObject {
|
|
object: 'user';
|
|
}
|
|
|