Skip to content

Commit

Permalink
mini upd
Browse files Browse the repository at this point in the history
  • Loading branch information
danylo-safonov-solid committed Sep 18, 2023
1 parent 6ebfab9 commit 20e5d3f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/query.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ class Query<T extends ResultType> {}
/// [[email protected]/Query](https://deno.land/x/[email protected]/query/query.ts?s=Query).
extension QueryProps<T extends ResultType> on Query {
/// [[email protected]/Query/result_type](https://deno.land/x/[email protected]/query/query.ts?s=Query#prop_result_type).
ResultType get resultType => getProperty(this, 'result_type');
ResultType get resultType => ResultType.parse(
getProperty(this, 'result_type'),
);
}

0 comments on commit 20e5d3f

Please sign in to comment.