UNPKG

@kubernetes-models/flux-cd

Version:
18 lines (17 loc) 635 B
import { ModelData, Model } from "@kubernetes-models/base"; export interface ICommitUser { /** * Email gives the email to provide when making a commit. */ "email": string; /** * Name gives the name to provide when making a commit. */ "name"?: string; } export declare class CommitUser extends Model<ICommitUser> implements ICommitUser { "email": string; "name"?: string; constructor(data?: ModelData<ICommitUser>); } export type { ICommitUser as IComGithubFluxcdImageAutomationControllerApiV1beta1CommitUser, CommitUser as ComGithubFluxcdImageAutomationControllerApiV1beta1CommitUser };