Documentation
1
2
3
4
5
6
7
package examples:basic-filter-map;
interface basic-filter-map-service {
    filter-map-fn: func(input: string) -> result<option<string>,string>;
}
world basic-filter-map-world {
    export basic-filter-map-service;    
}