mirror of
https://github.com/frappe/books.git
synced 2024-11-09 23:30:56 +00:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
|
import { BaseGSTR } from './BaseGSTR';
|
||
|
import { GSTRType } from './types';
|
||
|
|
||
|
export class GSTR1 extends BaseGSTR {
|
||
|
static title = 'GSTR1';
|
||
|
static reportName = 'gstr-1';
|
||
|
|
||
|
gstrType: GSTRType = 'GSTR-1';
|
||
|
}
|