WIP: add kanjivg data
Build and test / evals (push) Successful in 37m9s

This commit is contained in:
2026-03-03 13:47:59 +09:00
parent 0f7854a4fc
commit e67d906b3c
7 changed files with 179 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
abstract class KanjiVGTableNames {
static const String version = 'KanjiVG_Version';
static const String entry = 'KanjiVG_Entry';
static const String path = 'KanjiVG_Path';
static const String strokeNumber = 'KanjiVG_StrokeNumber';
static const String pathGroup = 'KanjiVG_PathGroup';
static Set<String> get allTables => {version, entry, path, strokeNumber, pathGroup};
}