@stackend/api
Version:
JS bindings to api.stackend.com
13 lines • 330 B
TypeScript
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;
//# sourceMappingURL=CreatorUserIdAware.d.ts.map