forgejo-notifications-core/src/spec/repository.ts

16 lines
295 B
TypeScript

// SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
import User from "./user";
type Repository = {
id: number;
name: string;
full_name: string;
html_url: string;
owner: User;
};
export default Repository;