UNPKG

@stackend/api

Version:

JS bindings to api.stackend.com

16 lines (12 loc) 269 B
import { User } from '../user'; export interface CreatorUserIdAware { /** * Id of the user that created the object */ creatorUserId: number; /** * User that created the object */ creatorUserRef?: User | null; } export default CreatorUserIdAware;